Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant updates to the Lennarb framework, focusing on enhancing the plugin system, improving documentation, and making various codebase refinements. The most important changes include the introduction of a new plugin system, comprehensive updates to the getting started guide, and various codebase improvements for better maintainability and functionality.
Plugin System Enhancements:
guides/plugin/readme.md
: Expanded the plugin system documentation with core features, plugin creation, usage, and best practices.lib/lennarb.rb
: Implemented a modular and thread-safe plugin system with methods for registering, loading, and configuring plugins.Documentation Updates:
guides/getting-started/readme.md
: Overhauled the getting started guide to provide a comprehensive introduction to Lennarb, including installation, basic usage, application structure, routing, middleware support, and best practices.Codebase Improvements:
lennarb.gemspec
: Removed thepuma
development dependency to streamline the gemspec file..rubocop.yml
: Cleaned up the RuboCop configuration by removing unnecessary indentation rules.Changelog Update:
changelog.md
: Documented the new features, changes, and removals in version 1.3.0, including the introduction of theLennarb::Plugin
module and changes to theLennarb
class.Minor Fixes:
guides/response/readme.md
: Updated the method for setting response headers to useres['Content-Type']
instead ofres.headers['Content-Type']
.